home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Komputer 2010 April
/
PCWorld0410.iso
/
pluginy Firefox
/
1320
/
1320.xpi
/
chrome
/
gmanager.jar
/
content
/
migrate
/
migrate.xml
< prev
next >
Wrap
Extensible Markup Language
|
2010-01-22
|
1KB
|
41 lines
<?xml version="1.0" encoding="UTF-8"?>
<!--
Gmail Manager
By Todd Long <longfocus@gmail.com>
http://www.longfocus.com/firefox/gmanager/
-->
<bindings xmlns="http://www.mozilla.org/xbl"
xmlns:xbl="http://www.mozilla.org/xbl"
xmlns:xul="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
<binding id="gmanager-migrate-listitem"
extends="chrome://global/content/bindings/listbox.xml#listitem">
<content allowevents="true">
<children>
<xul:listcell>
<xul:checkbox anonid="checkbox"
checked="true"
xbl:inherits="label=email"/>
</xul:listcell>
<xul:listcell xbl:inherits="label=password"/>
</children>
</content>
<implementation>
<property name="email"
onget="return this.getAttribute('email');"
onset="return this.setAttribute('email', val);"/>
<property name="password"
onget="return this.getAttribute('password');"
onset="return this.setAttribute('password', val);"/>
<property name="checked"
onget="return document.getAnonymousElementByAttribute(this, 'anonid', 'checkbox').checked;"/>
</implementation>
</binding>
</bindings>